7 lines
No EOL
190 B
Bash
Executable file
7 lines
No EOL
190 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir out
|
|
rm -rf out/*
|
|
flutter pub publish -f --skip-validation
|
|
dart compile exe -o out/server_test bin/server_test.dart
|
|
dart compile exe -o out/client_test bin/client_test.dart |