Skip to content

Commit 3e45116

Browse files
committed
Try to move to /usr/bin/env bash
1 parent 699a077 commit 3e45116

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

create-plugin.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
windows=false
44

@@ -126,4 +126,4 @@ create
126126
if [ "$3" != "--skip-compilation" ]; then
127127
compile
128128
fi
129-
echo -e "\x1B[32mPlugin successfully installed!\x1B[0m"
129+
echo -e "\x1B[32mPlugin successfully installed!\x1B[0m"

create-project.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
windows=false
44

export.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
windows=false
33

44
oldpwd=$(pwd)

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
VSVer=" "
33
VSShortVer="1"
44
cpus=" "

update.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
cpus=$(grep -c processor /proc/cpuinfo) || cpus=$(sysctl -n hw.ncpu)
33
echo -e "\x1b[32mCompiling with ${cpus} jobs!\x1b[0m"
44

0 commit comments

Comments
 (0)