From 90e2aa50703f53589da3c49bb20ec5364f490a1f Mon Sep 17 00:00:00 2001 From: ryleu <69326171+ryleu@users.noreply.github.com> Date: Thu, 23 Oct 2025 19:11:03 -0500 Subject: [PATCH] update shebangs to work on nixos --- auto_start/auto_start_anchor.sh | 2 +- auto_start/auto_start_core_headless.sh | 2 +- auto_start/auto_start_headless_full.sh | 2 +- auto_start/start_rosbag.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/auto_start/auto_start_anchor.sh b/auto_start/auto_start_anchor.sh index 0d7e9c2..71cc2e1 100755 --- a/auto_start/auto_start_anchor.sh +++ b/auto_start/auto_start_anchor.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Wait for a network interface to be up (not necessarily online) while ! ip link show | grep -q "state UP"; do diff --git a/auto_start/auto_start_core_headless.sh b/auto_start/auto_start_core_headless.sh index b59126b..8e787b8 100755 --- a/auto_start/auto_start_core_headless.sh +++ b/auto_start/auto_start_core_headless.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Wait for a network interface to be up (not necessarily online) while ! ip link show | grep -q "state UP"; do diff --git a/auto_start/auto_start_headless_full.sh b/auto_start/auto_start_headless_full.sh index 488e033..870a646 100755 --- a/auto_start/auto_start_headless_full.sh +++ b/auto_start/auto_start_headless_full.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Wait for a network interface to be up (not necessarily online) while ! ip link show | grep -q "state UP"; do diff --git a/auto_start/start_rosbag.sh b/auto_start/start_rosbag.sh index 3d659f0..786a153 100755 --- a/auto_start/start_rosbag.sh +++ b/auto_start/start_rosbag.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ANCHOR_WS="/home/clucky/rover-ros2" AUTONOMY_WS="/home/clucky/rover-Autonomy"