Skip to content

Commit 6b040af

Browse files
committed
move to outputs dir
1 parent 04b8c06 commit 6b040af

8 files changed

+2
-2
lines changed

src/generator/generate_configure.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async function generateWithGroup(options, group) {
3131
const configure = bridgeConfig.configure;
3232
await refactorConfig({configure, group});
3333

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

src/register/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ async function hashRegister(register) {
192192
async function ensureLock(options, write = false) {
193193
const {register} = options;
194194
const irn = _identifyRegisterName(register);
195-
const LOCK_PATH = arg.datapath('/lock');
195+
const LOCK_PATH = arg.datapath('/outputs/lock');
196196
const lockName = `${LOCK_PATH}/${irn}.lock.json`;
197197
if (write) {
198198
await $`mkdir -p ${LOCK_PATH}`.quiet();

0 commit comments

Comments
 (0)