
Removes unnecessary "bash -c" from the scripts as they are not required and already being called from the tox.ini. Change-Id: I533e32d37fd48c9f137ff528f85fb06437f322ce
11 lines
377 B
Bash
Executable File
11 lines
377 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
|
|
tar czf publish-docs/trunk/training-guides/labs-scripts.tgz labs
|
|
|
|
# Generate Windows batch scripts
|
|
labs/osbash.sh -w cluster
|
|
# Create zip file of labs scripts for Windows users
|
|
zip -r publish-docs/trunk/training-guides/labs-scripts.zip labs
|