blob: a830a22d91805f32d39dddb5145ee1f5438c2003 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Move to script's directory
cd "`dirname "$0"`"
# if $TERM is not set to xterm, mono will bail out when attempting to write to the console.
export TERM=xterm
# run installer
./internal/unix-install
|