Skip to content

Commit

Permalink
Fix shebang and makes script executable (#21)
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Pichard <w3st3ry@users.noreply.github.com>
  • Loading branch information
Alkorin authored and w3st3ry committed Nov 15, 2019
1 parent a63760b commit d72dfbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hack/generate-install-script.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/bash
#!/bin/bash

set -e

dst=$1
Expand All @@ -18,8 +19,9 @@ write_block() {
touch $dst

cat <<EOF >$dst
#!/usr/bin/bash
set -e
#!/bin/bash
set -e
mkdir -p templates sql plugins init
Expand Down
1 change: 1 addition & 0 deletions hack/interactive.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash

while DEV=true ./../utask
do
Expand Down

0 comments on commit d72dfbc

Please # to comment.