Skip to content

Commit 1137667

Browse files
author
Vikas Agarwal
committed
fix: reverted temporary fix and changed cache key instead
1 parent 019e2eb commit 1137667

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ install_deploysuite: &install_deploysuite
1616
cp ./../buildscript/buildenv.sh .
1717
cp ./../buildscript/awsconfiguration.sh .
1818
restore_cache_settings_for_build: &restore_cache_settings_for_build
19-
key: docker-node-modules-{{ checksum "package-lock.json" }}
19+
key: docker-node-modules-28-10-2020-{{ checksum "package-lock.json" }}
2020

2121
save_cache_settings: &save_cache_settings
22-
key: docker-node-modules-{{ checksum "package-lock.json" }}
22+
key: docker-node-modules-28-10-2020-{{ checksum "package-lock.json" }}
2323
paths:
2424
- node_modules
2525

@@ -29,12 +29,6 @@ builddeploy_steps: &builddeploy_steps
2929
- run: *install_dependency
3030
- run: *install_deploysuite
3131
- restore_cache: *restore_cache_settings_for_build
32-
- run:
33-
name: Temporary fix
34-
command: |
35-
cd $(npm root -g)/npm
36-
npm install fs-extra
37-
sed -i -e s/graceful-fs/fs-extra/ -e s/fs.rename/fs.move/ ./lib/utils/rename.js
3832
- run: ./build.sh ${APPNAME}
3933
- save_cache: *save_cache_settings
4034
- deploy:

0 commit comments

Comments
 (0)