mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 13:42:30 -05:00
fix: remove unnecessary if statement
This commit is contained in:
parent
d6f1224931
commit
34fcab3ce0
1 changed files with 9 additions and 11 deletions
|
@ -84,7 +84,6 @@ const pushSource = async function () {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// file not found - create it, but also give message
|
// file not found - create it, but also give message
|
||||||
if (err.statusCode === 404) {
|
|
||||||
process.stdout.write(`Transifex Resource not found, creating: ${RESOURCE}\n`);
|
process.stdout.write(`Transifex Resource not found, creating: ${RESOURCE}\n`);
|
||||||
const resourceData = {
|
const resourceData = {
|
||||||
slug: RESOURCE,
|
slug: RESOURCE,
|
||||||
|
@ -94,7 +93,6 @@ const pushSource = async function () {
|
||||||
content: en
|
content: en
|
||||||
};
|
};
|
||||||
await txCreateResource(PROJECT, resourceData);
|
await txCreateResource(PROJECT, resourceData);
|
||||||
}
|
|
||||||
process.exitCode = 0;
|
process.exitCode = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue