Skip to content

Commit

Permalink
Use underscore instead of space to separate application name from pac…
Browse files Browse the repository at this point in the history
…kage version [#112-196542987]
  • Loading branch information
RazZziel committed Mar 20, 2016
1 parent 4db2174 commit 19f2a71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ outdir="$PWD/out"
mkdir -p "$outdir"

for i in AppRun; do
[ -f "$i" ] && mv -v "$i" "${outdir}/${i} ${version}-$(uname -m)"
[ -f "$i" ] && mv -v "$i" "${outdir}/${i}_${version}-$(uname -m)"
done

for i in AppImageAssistant AppImageExtract AppImageMonitor AppImageUpdate; do
[ -f "$i" ] && mv -v "$i" "${outdir}/${i} ${version}-$(uname -m).AppImage"
[ -f "$i" ] && mv -v "$i" "${outdir}/${i}_${version}-$(uname -m).AppImage"
done

cd -

0 comments on commit 19f2a71

Please sign in to comment.