Skip to content

Commit

Permalink
Fix moving of generated AppImages
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Jun 22, 2023
1 parent b7e2756 commit df6e58b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion appimagecraft/generators/appimage_build_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ def try_export_env_vars(key_name, raw=False):
[
"",
"# move built AppImages to artifacts dir, excluding the downloaded linuxdeploy stuff",
"find . -type f -path ./downloads -prune -o -iname '*.AppImage*' -exec mv '{}' ../artifacts ';'",
'echo "====================',
'echo "Generated AppImages:"',
"find . -path ./downloads -prune -o -iname '*.AppImage*' -print -exec mv '{}' ../artifacts ';'",
]
)

Expand Down

0 comments on commit df6e58b

Please sign in to comment.