aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-02-10 16:44:09 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-02-10 17:04:29 +0100
commit2caad8900d036e6a7dbd52bac2f10fd0dd4c6c79 (patch)
tree0511b54382dea673fe280c342908a072df8c4e09
parentd294939fec23095973aa2b8f87e30accce41d180 (diff)
downloadNix-2caad8900d036e6a7dbd52bac2f10fd0dd4c6c79.tar.gz
Nix-2caad8900d036e6a7dbd52bac2f10fd0dd4c6c79.tar.zst
Nix-2caad8900d036e6a7dbd52bac2f10fd0dd4c6c79.zip
Fix shebangs in scripts
-rwxr-xr-xnixops/scripts/with_env2
-rwxr-xr-xscripts/fetch_version2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixops/scripts/with_env b/nixops/scripts/with_env
index a442ced..dd0fecb 100755
--- a/nixops/scripts/with_env
+++ b/nixops/scripts/with_env
@@ -1,4 +1,4 @@
1#!/bin/bash 1#!/usr/bin/env bash
2 2
3if [ -z "$NIXOPS" ]; then 3if [ -z "$NIXOPS" ]; then
4 echo "Please set NIXOPS to the nixops command" 4 echo "Please set NIXOPS to the nixops command"
diff --git a/scripts/fetch_version b/scripts/fetch_version
index a0325f6..5c4715a 100755
--- a/scripts/fetch_version
+++ b/scripts/fetch_version
@@ -1,4 +1,4 @@
1#!/bin/bash 1#!/usr/bin/env bash
2 2
3usage() { 3usage() {
4 echo "$0 file.json" 4 echo "$0 file.json"