Commits

Darrell Schiebel authored 59957d466fd
add extra output for AppImage creator exec (CAS-13567)

scripts/create-app

Modified
100 100 }
101 101
102 102 die "configuration error, cannot find app image creator ($appimage_creator_name)" unless -e $appimage_creator;
103 103
104 104 my $creator = abs_path($appimage_creator);
105 105 my $app = basename($appdir);
106 106 my $workdir = dirname($appdir);
107 107
108 108 chdir($workdir);
109 109 my @args = ( basename($creator), $app );
110 + my $workingdir = getcwd;
111 + print "--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---\n";
112 + print "cd $workingdir\n";
113 + print join( ' ', $creator, @args[ 1 .. $#args ] ), "\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 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut