Commits
Darrell Schiebel authored 59957d466fd
100 100 | } |
101 101 | |
102 102 | die "configuration error, cannot find app image creator ($appimage_creator_name)" unless - $appimage_creator; |
103 103 | |
104 104 | my $creator = ($appimage_creator); |
105 105 | my $app = ($appdir); |
106 106 | my $workdir = ($appdir); |
107 107 | |
108 108 | chdir($workdir); |
109 109 | my @args = ( ($creator), $app ); |
110 + | my $workingdir = ; |
111 + | print "--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---\n"; |
112 + | print "cd $workingdir\n"; |
113 + | print join( ' ', $creator, @args[ 1 .. $# ] ), "\n"; |
114 + | print "--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---\n"; |
110 115 | exec { $creator } @args or die "can't exec app creation: $!"; |
111 116 | } |
112 117 | |
113 118 | } else { |
114 119 | die "sorry, creation of the app directory seems to have failed..."; |
115 120 | } |