scripts: quiet

This commit is contained in:
Mitchell Hashimoto 2014-08-28 10:21:13 -07:00
parent f67dfce2ae
commit e7e60cb493
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ gox \
# Make sure "terraform-terraform" is renamed properly
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
set +e
mv ${PLATFORM}/terraform-terraform.exe ${PLATFORM}/terraform.exe
mv ${PLATFORM}/terraform-terraform ${PLATFORM}/terraform
mv ${PLATFORM}/terraform-terraform.exe ${PLATFORM}/terraform.exe 2>/dev/null
mv ${PLATFORM}/terraform-terraform ${PLATFORM}/terraform 2>/dev/null
set -e
done