Skip to content

Commit a6cd035

Browse files
Cynthia RichCynthia Rich
authored andcommitted
rename _buildscripts --> scripts
1 parent 7846b75 commit a6cd035

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ The class material content possess two specialized uses of Markdown for slide-li
3838

3939
## Build
4040

41-
The build of this repository is fully automated through several shell scripts. To perform a build of the materials identical to that of our continuous integration server, from the top directory of this project, run `./_buildscripts/cibuild` and then inspect the output in the `_site` directory.
41+
The build of this repository is fully automated through several shell scripts. To perform a build of the materials identical to that of our continuous integration server, from the top directory of this project, run `script/cibuild` and then inspect the output in the `_site` directory.
4242

43-
The `_buildscripts/makerelease` script produces a zip bundle for offline use of these materials. Pre-built releases are available at https://github.com/github/training-kit/releases
43+
The `script/makerelease` script produces a zip bundle for offline use of these materials. Pre-built releases are available at https://github.com/github/training-kit/releases
File renamed without changes.

_buildscripts/cibuild renamed to script/cibuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ echo "hostname: $(hostname)"
1212
echo "pwd: $(pwd)"
1313
git --version
1414

15-
_buildscripts/bootstrap
15+
script/bootstrap
1616

1717
bundle exec rake test
File renamed without changes.

_buildscripts/makerelease renamed to script/makerelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
if ! _buildscripts/cibuild; then
3+
if ! script/cibuild; then
44
printf '%s\n' 'Build failed' >&2
55
exit 1
66
fi
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
_buildscripts/update
4-
_buildscripts/cibuild
3+
script/update
4+
script/cibuild
55

66
bundle exec jekyll serve --watch "$@"

_buildscripts/setup renamed to script/setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
set -e
44
export CC=gcc
55

6-
_buildscripts/bootstrap
6+
script/bootstrap
77

88
echo "==> The app is now ready to go!"
File renamed without changes.

_buildscripts/update renamed to script/update

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -e
44
export CC=gcc
55

6-
_buildscripts/bootstrap
6+
script/bootstrap
File renamed without changes.

0 commit comments

Comments
 (0)