Skip to content

Commit cc8759b

Browse files
authored
Merge pull request #391 from voxpupuli/fix-run-on-freebsd
Fix running CI on FreeBSD
2 parents b725e24 + b3dfa6f commit cc8759b

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

features/sandbox/append.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#!/bin/bash
2-
TMPFILE='mktemp'
1+
#!/bin/sh
2+
TMPFILE=`mktemp`
33
cat $2 $1 > $TMPFILE
44
cp $TMPFILE $2
5-
rm $TMPFILE
5+
rm $TMPFILE
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
perl -pi -e 's/(DEC\(\d+\)::[A-Z0-9]+\[.*?\]\!)/uc($1)/ge' $1

features/sandbox/path/editor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
echo \"$0\" $*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
echo \"$0\" $*

features/sandbox/pipe_string.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
STRING=$1
44
shift
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#!/usr/bin/expect -f
1+
#!/usr/bin/env expect
22
log_file password.output
33

44
spawn bash -c "[lindex $argv]"
55
expect "Enter password"
66
send "secretme\n"
7-
expect eof
7+
expect eof

0 commit comments

Comments
 (0)