Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3652829

Browse files
authored
Reduce verbosity of --appimage-extract
1 parent 20e4a9a commit 3652829

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ main (int argc, char *argv[])
261261
strcat(strcat(prefixed_path_to_extract, prefix), trv.path);
262262
fprintf(stderr, "%s\n", prefixed_path_to_extract);
263263
if(inode.base.inode_type == SQUASHFS_DIR_TYPE){
264-
fprintf(stderr, "inode.xtra.dir.parent_inode: %ui\n", inode.xtra.dir.parent_inode);
265-
fprintf(stderr, "mkdir_p: %s/\n", prefixed_path_to_extract);
264+
// fprintf(stderr, "inode.xtra.dir.parent_inode: %ui\n", inode.xtra.dir.parent_inode);
265+
// fprintf(stderr, "mkdir_p: %s/\n", prefixed_path_to_extract);
266266
if(access(prefixed_path_to_extract, F_OK ) == -1 ) {
267267
if (mkdir_p(prefixed_path_to_extract) == -1) {
268268
perror("mkdir_p error");

0 commit comments

Comments
 (0)