diff options
| author | Selene ToyKeeper | 2023-11-07 09:50:06 -0700 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-11-07 09:50:06 -0700 |
| commit | 3d7ef9192e97a3de6fdac81763b9b67381d3ceb1 (patch) | |
| tree | a01848471e665675935bee016dce7093686c073c | |
| parent | made build fail if eeprom data bigger than MCU's eeprom size (diff) | |
| parent | Changed bash and sh shebangs to /usr/bin/env (diff) | |
| download | anduril-3d7ef9192e97a3de6fdac81763b9b67381d3ceb1.tar.gz anduril-3d7ef9192e97a3de6fdac81763b9b67381d3ceb1.tar.bz2 anduril-3d7ef9192e97a3de6fdac81763b9b67381d3ceb1.zip | |
Merge branch 'trunk' of github.com:GarikFirst/anduril into pull15
Fixes bug 13 maybe?
https://github.com/ToyKeeper/anduril/issues/13
* 'trunk' of github.com:GarikFirst/anduril:
Changed bash and sh shebangs to /usr/bin/env
Update make shebang for portability
Diffstat (limited to '')
| -rwxr-xr-x | bin/build-all.sh | 2 | ||||
| -rwxr-xr-x | bin/build.sh | 2 | ||||
| -rwxr-xr-x | bin/detect-mcu.sh | 2 | ||||
| -rwxr-xr-x | bin/dfp-install.sh | 2 | ||||
| -rwxr-xr-x | bin/flash.sh | 2 | ||||
| -rwxr-xr-x | make | 2 | ||||
| -rwxr-xr-x | ui/fireflies-ui/build-all.sh | 2 | ||||
| -rwxr-xr-x | ui/rampingios/build-all.sh | 2 | ||||
| -rwxr-xr-x | ui/werner/build-all.sh | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/bin/build-all.sh b/bin/build-all.sh index 0372ad7..0dec247 100755 --- a/bin/build-all.sh +++ b/bin/build-all.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh # Anduril / FSM build wrapper script # Copyright (C) 2017-2023 Selene ToyKeeper # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/bin/build.sh b/bin/build.sh index 50f93b7..0c3b107 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Anduril / FSM build script # Copyright (C) 2014-2023 Selene ToyKeeper # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/bin/detect-mcu.sh b/bin/detect-mcu.sh index 761eac1..8a93e21 100755 --- a/bin/detect-mcu.sh +++ b/bin/detect-mcu.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh # Anduril / FSM MCU type detection script # Copyright (C) 2014-2023 Selene ToyKeeper # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/bin/dfp-install.sh b/bin/dfp-install.sh index a73c4d5..24b4908 100755 --- a/bin/dfp-install.sh +++ b/bin/dfp-install.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh # Atmel DFP download/install/setup script # Copyright (C) 2023 Selene ToyKeeper # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/bin/flash.sh b/bin/flash.sh index 0423c90..93fbdbc 100755 --- a/bin/flash.sh +++ b/bin/flash.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Flashes both fuses and firmware. @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Anduril / FSM "make" script # Copyright (C) 2023 Selene ToyKeeper # SPDX-License-Identifier: GPL-3.0-or-later diff --git a/ui/fireflies-ui/build-all.sh b/ui/fireflies-ui/build-all.sh index 81ebd97..83c6964 100755 --- a/ui/fireflies-ui/build-all.sh +++ b/ui/fireflies-ui/build-all.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh cp -av --no-clobber ../anduril/cfg-ff*.h . diff --git a/ui/rampingios/build-all.sh b/ui/rampingios/build-all.sh index 106dc15..c788b1f 100755 --- a/ui/rampingios/build-all.sh +++ b/ui/rampingios/build-all.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh cp -av ../anduril/cfg-emisar*.h . diff --git a/ui/werner/build-all.sh b/ui/werner/build-all.sh index b114101..4c88369 100755 --- a/ui/werner/build-all.sh +++ b/ui/werner/build-all.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env sh cp -av ../anduril/cfg*.h . |
