diff --git a/Jenkinsfile b/Jenkinsfile index 5107707..93d4135 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,4 +3,4 @@ library identifier: "wizard@14-redesign-gitlab-ci-platform-for-testing", retriev remote: 'https://github.com/scalastic/wizard.git', credentialsId: 'wizard-github-token']) _ -wildPipeline() \ No newline at end of file +wizardPipeline() \ No newline at end of file diff --git a/README.md b/README.md index a0c6f26..04df6cf 100644 --- a/README.md +++ b/README.md @@ -84,18 +84,18 @@ wizard [options] [command] ### Command options -| Option | Description | -| --- | --- | -| -h, --help | Display help for command | -| -v, --version | Display version of Wild | -| -d, --debug | Display debug information | -| -q, --quiet | Do not display any output | +| Option | Description | +| --- |---------------------------------------| +| -h, --help | Display help for command | +| -v, --version | Display version of Wizard | +| -d, --debug | Display debug information | +| -q, --quiet | Do not display any output | | -c, --config | Specify the configuration file to use | -| -p, --project | Specify the project directory to use | -| -l, --log | Specify the log file to use | -| -t, --trace | Specify the trace file to use | -| -e, --env | Specify the environment file to use | -| -i, --input | Specify the input file to use | +| -p, --project | Specify the project directory to use | +| -l, --log | Specify the log file to use | +| -t, --trace | Specify the trace file to use | +| -e, --env | Specify the environment file to use | +| -i, --input | Specify the input file to use | ## Project directory diff --git a/config/json-schema/workflow-schema.json b/config/json-schema/workflow-schema.json index 0b14476..4e94f5b 100644 --- a/config/json-schema/workflow-schema.json +++ b/config/json-schema/workflow-schema.json @@ -1,8 +1,8 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://scalastic.io/workflow.schema.json", - "title": "Wild", - "description": "A workflow definition in Wild", + "title": "Wizard", + "description": "A workflow definition in Wizard", "version": "0.0.1", "type": "object", "properties": { diff --git a/contrib/build.sh b/contrib/build.sh index 25fb2b3..5d97831 100755 --- a/contrib/build.sh +++ b/contrib/build.sh @@ -1,17 +1,17 @@ #!/usr/bin/env bash # -# Inline Wild script and act as a wrapper. +# Inline Wizard script and act as a wrapper. # This script is for release purposes. set -euo pipefail -export WILD_CWD="${PWD}" +export WIZARD_CWD="${PWD}" mkdir -p ./bin rm -f ./bin/wizard ./src/lib/ext/inline.sh --in-file ./src/wizard.sh --out-file ./bin/wizard -grep -Ev "^[[:blank:]]*#[^!]|^[[:blank:]]*$" ./bin/wild > ./bin/wild.tmp -mv ./bin/wild.tmp ./bin/wild -chmod u+x ./bin/wild +grep -Ev "^[[:blank:]]*#[^!]|^[[:blank:]]*$" ./bin/wizard > ./bin/wizard.tmp +mv ./bin/wizard.tmp ./bin/wizard +chmod u+x ./bin/wizard echo "ok" diff --git a/contrib/make_doc.sh b/contrib/make_doc.sh index 07db161..77fab53 100755 --- a/contrib/make_doc.sh +++ b/contrib/make_doc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Generates Wild source code documentation. +# Generates Wizard source code documentation. set -euo pipefail diff --git a/contrib/make_package_json.sh b/contrib/make_package_json.sh index e3abafe..c93f374 100755 --- a/contrib/make_package_json.sh +++ b/contrib/make_package_json.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Creates a package.json file for Wild +# Creates a package.json file for Wizard export LANG=C @@ -10,16 +10,16 @@ version() { files() { echo "[" - files="$(find src -not -path "*lib/ext*" \( -type f -o -type l \) -exec echo " \"{}\"," \; | sort)" + files="$(find src -not -path "*lib/ext*" -not -name ".DS_Store" \( -type f -o -type l \) -exec echo " \"{}\"," \; | sort)" echo "${files%,}" echo " ]" } cat<