fix: move shebang above copyright header in scripts

This commit is contained in:
2026-04-26 03:15:54 -04:00
parent 73c3bbd291
commit 0a578e7b09
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#!/usr/bin/env fish
# Copyright (C) 2026 Rootiest # Copyright (C) 2026 Rootiest
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
#!/usr/bin/env fish
# 1. Read input and extract session ID # 1. Read input and extract session ID
set -l input (cat) set -l input (cat)
set -l sid (echo $input | python3 -c "import sys,json; print(json.load(sys.stdin).get('session_id', ''))") set -l sid (echo $input | python3 -c "import sys,json; print(json.load(sys.stdin).get('session_id', ''))")
+2 -2
View File
@@ -1,8 +1,8 @@
#!/usr/bin/env fish
# Copyright (C) 2026 Rootiest # Copyright (C) 2026 Rootiest
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
#!/usr/bin/env fish
# 1. Read the JSON from stdin # 1. Read the JSON from stdin
set -l input (cat) set -l input (cat)