mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
104 B
Bash
10 lines
104 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
if [ "$1" != "" ]; then
|
|
exec ./koch install "$1"
|
|
else
|
|
exec ./koch install
|
|
fi
|