
Adds a script for building windows scripts and creating tar/zip files for the labs section. Change-Id: I8a1fd7a9600aa85f6ecd67802d272755bd0ba9e5
11 lines
407 B
Bash
Executable File
11 lines
407 B
Bash
Executable File
#!/bin/bash
|
|
# Used by tox.ini when checking build and publishing docs to website
|
|
|
|
# Create tarball of labs scripts for Linux/OS X users
|
|
bash -c "tar czf publish-docs/trunk/training-guides/labs-scripts.tgz labs"
|
|
|
|
# Generate Windows batch scripts
|
|
bash -c "labs/osbash.sh -w cluster"
|
|
# Create zip file of labs scripts for Windows users
|
|
bash -c "zip -r publish-docs/trunk/training-guides/labs-scripts.zip labs"
|