Skip to content

Commit 507e225

Browse files
committed
Fix: bash detection error on macOS
1 parent 9513b0a commit 507e225

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e
44
SELF_DIR="$(dirname $(readlink -f $0))"
@@ -48,4 +48,4 @@ cd build
4848
mkdir -p imports
4949
$CC $CFLAGS -c ../sqlite3.c
5050
$CXX $CXXFLAGS ../sqlite.cpp ./sqlite3.o $LDFLAGS -o ./imports/sqlite.cse
51-
rm ./sqlite3.o
51+
rm ./sqlite3.o

0 commit comments

Comments
 (0)