Skip to content

Commit

Permalink
Fix syntax error in makedmg.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
  • Loading branch information
bfirsh committed Oct 13, 2014
1 parent 7731ff5 commit b651d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makedmg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ else
TITLE=$2
CONTENTDIR=$3
FILESIZE=$(du -sm "${CONTENTDIR}" | cut -f1)
FILESIZE=$(("${FILESIZE}" + 5))
FILESIZE=$((${FILESIZE} + 5))
USER=$(whoami)
TMPDIR="/tmp/dmgdir"

Expand Down

0 comments on commit b651d59

Please sign in to comment.