Skip to content

Commit f8089c3

Browse files
committed
linux binaries now placed at bin/linux
1 parent e7da47e commit f8089c3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
#!/bin/sh
22

3-
gcc -Wall -Wextra main.c tea.c -std=c99 -Wpedantic -o tea
3+
if [ ! -e bin/linux ]; then
4+
mkdir -p bin/linux || exit
5+
fi
6+
gcc -Wall -Wextra main.c tea.c -std=c99 -Wpedantic -o bin/linux/tea

0 commit comments

Comments
 (0)