@leverege/build-tools 2.51.0-beta.1 → 2.51.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.51.0-beta.1",
3
+ "version": "2.51.0-beta.2",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -21,13 +21,13 @@ if [[ $exists == gs://* ]]; then
21
21
  exit
22
22
  fi
23
23
 
24
- npm run clean-docs &> $DEVNULL
24
+ npm run cleanDocs &> $DEVNULL
25
25
  errorExit $?
26
26
  npm run docs &> $DEVNULL
27
27
  errorExit $?
28
28
 
29
29
  TARGET_BUCKET="gs://$bucket_name/$library/$version"
30
- BUCKET_COPY="gsutil -m cp -r ./docs/** $TARGET_BUCKET"
30
+ BUCKET_COPY="gsutil -m cp -r $cwd/docs/** $TARGET_BUCKET"
31
31
 
32
32
  cat<<LOG_COPYING
33
33