mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
16 lines
81 B
Bash
Executable File
16 lines
81 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
set -e
|
|
|
|
pwd
|
|
|
|
uname -a
|
|
|
|
make -j4
|
|
|
|
./v version
|
|
|
|
du -s .
|
|
|
|
echo "DONE"
|