Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
chore: update all bash scripts to use shebang: /usr/bin/env bash (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannikolaidis authored Jun 22, 2023
1 parent 9ea8335 commit 9211d5b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions pipeline-notebooks/pipeline-section.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1195,6 +1195,14 @@
"with open('all_narratives.csv', 'w') as out:\n",
" out.write(all_narratives)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6f8bc380",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand Down
2 changes: 1 addition & 1 deletion scripts/shellcheck.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

find scripts -name "*.sh" -exec shellcheck {} +

2 changes: 1 addition & 1 deletion scripts/version-sync.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
function usage {
echo "Usage: $(basename "$0") [-c] -f FILE_TO_CHANGE REPLACEMENT_FORMAT [-f FILE_TO_CHANGE REPLACEMENT_FORMAT ...]" 2>&1
echo 'Synchronize files to latest version in source file'
Expand Down

0 comments on commit 9211d5b

Please sign in to comment.