mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
15 lines
77 B
Bash
Executable file
15 lines
77 B
Bash
Executable file
#!/bin/sh -l
|
|
|
|
set -e
|
|
|
|
pwd
|
|
|
|
uname -a
|
|
|
|
make
|
|
|
|
./v version
|
|
|
|
du -s .
|
|
|
|
echo "DONE"
|