Skip to content

Commit

Permalink
Merge pull request #110 from dlo9/master
Browse files Browse the repository at this point in the history
Fix bash shebang
  • Loading branch information
kennethjiang authored Nov 21, 2024
2 parents 4c0b7b6 + fca0671 commit 07fc745
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -e

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

set -e

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

debian_release() {
cat /etc/debian_version | cut -d '.' -f1
Expand Down
2 changes: 1 addition & 1 deletion scripts/link.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

export OBICO_DIR=$(readlink -f $(dirname "$0"))/..

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

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

# Set DEBUG=True for faster pic and status update
# DEBUG=True ../moonraker-obico-env/bin/python3 -m moonraker_obico.app $@
Expand Down
2 changes: 1 addition & 1 deletion scripts/tsd_service_existed.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

KLIPPER_CONF_DIR="$1"
SYSTEMDDIR="/etc/systemd/system"
Expand Down

0 comments on commit 07fc745

Please sign in to comment.