Browse Source

sde-binary: improved dash support

user/amery/test/random-cleanup
Alejandro Mery 14 years ago
parent
commit
ab58150f51
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lib/sde-binary/package-gem.sh
  2. +1
    -1
      lib/sde-binary/package.sh

+ 1
- 1
lib/sde-binary/package-gem.sh

@ -76,7 +76,7 @@ if $SDEROOT/lib/sde-binary/package.sh --type "tar.bz2" ${versioned:+--versioned}
echo_error "Failed to create '$output/$filename.gem'"
rm -f "$output/$filename.gem.tmp"
else
mv "$output/$filename.gem"{.tmp,}
mv "$output/$filename.gem.tmp" "$output/$filename.gem"
fi
echo_status "Removing temporary ${filename}tar.bz2 file"

+ 1
- 1
lib/sde-binary/package.sh

@ -98,5 +98,5 @@ if [ "$errno" != "0" ]; then
rm -f "$output/$filename.tmp"
exit 4
else
mv "$output/$filename"{.tmp,}
mv "$output/$filename.tmp" "$output/$filename"
fi

Loading…
Cancel
Save