Skip to content

Commit

Permalink
move to outputs dir
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa committed Jul 25, 2024
1 parent 04b8c06 commit 6b040af
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/generator/generate_configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function generateWithGroup(options, group) {
const configure = bridgeConfig.configure;
await refactorConfig({configure, group});

const CONFIGURE_PATH = arg.datapath('/configure');
const CONFIGURE_PATH = arg.datapath('/outputs/configure');
const storeFile = `${CONFIGURE_PATH}/configure.${group}.json`;
await $`mkdir -p ${CONFIGURE_PATH}`.quiet();

Expand Down
2 changes: 1 addition & 1 deletion src/register/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ async function hashRegister(register) {
async function ensureLock(options, write = false) {
const {register} = options;
const irn = _identifyRegisterName(register);
const LOCK_PATH = arg.datapath('/lock');
const LOCK_PATH = arg.datapath('/outputs/lock');
const lockName = `${LOCK_PATH}/${irn}.lock.json`;
if (write) {
await $`mkdir -p ${LOCK_PATH}`.quiet();
Expand Down

0 comments on commit 6b040af

Please sign in to comment.