mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
18 lines
108 B
Bash
Executable File
18 lines
108 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
set -e
|
|
|
|
pwd
|
|
|
|
uname -a
|
|
|
|
du -s .
|
|
|
|
ls -lat
|
|
|
|
./v test-compiler
|
|
|
|
./v build-vbinaries
|
|
|
|
echo "DONE"
|