From ef15d9541612249f0234184a7730311861db1dec Mon Sep 17 00:00:00 2001 From: Takuya ASADA Date: Sat, 30 Apr 2016 07:40:40 +0000 Subject: [PATCH] dist: #!/bin/bash for all scripts Like we did on scylla-server, switch to bash. --- dist/redhat/build_rpm.sh | 2 +- dist/ubuntu/build_deb.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/redhat/build_rpm.sh b/dist/redhat/build_rpm.sh index 21c1d21..4211191 100755 --- a/dist/redhat/build_rpm.sh +++ b/dist/redhat/build_rpm.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e RPMBUILD=`pwd`/build/rpmbuild diff --git a/dist/ubuntu/build_deb.sh b/dist/ubuntu/build_deb.sh index 7995e8f..348b9c8 100644 --- a/dist/ubuntu/build_deb.sh +++ b/dist/ubuntu/build_deb.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e if [ ! -e dist/ubuntu/build_deb.sh ]; then echo "run build_deb.sh in top of scylla dir"