Skip to content

Commit a67db28

Browse files
add missing exclamation mark in shebang
1 parent eda6719 commit a67db28

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tools/genpdf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
DATA_DIR="$(cd "$(dirname "${0}")/.." && pwd)"
44
docker run -v ${DATA_DIR}:/data --rm -it trivadis/mktools bash -c "cd /data; ./tools/run-in-container/genpdf.sh"

tools/interactive.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
DATA_DIR="$(cd "$(dirname "${0}")/.." && pwd)"
44
docker run -v ${DATA_DIR}:/data -p 8000:8000 --rm -it trivadis/mktools bash

tools/mike.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
DATA_DIR="$(cd "$(dirname "${0}")/.." && pwd)"
44
GIT_USERNAME="$(git config user.name)"

tools/run-in-container/genpdf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
function create_target_dir(){
44
rm -Rf ${TARGET_DIR}

tools/run-in-container/mike.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
GIT_USERNAME=$1
44
GIT_EMAIL=$2

tools/serve.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/bash
1+
#!/bin/bash
22

33
DATA_DIR="$(cd "$(dirname "${0}")/.." && pwd)"
44
docker run -v ${DATA_DIR}:/data -p 8000:8000 --rm -it trivadis/mktools bash -c "cd /data; mkdocs serve -a 0.0.0.0:8000"

0 commit comments

Comments
 (0)