mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 05:32:34 -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;
|
||||
}
|
||||
// file not found - create it, but also give message
|
||||
if (err.statusCode === 404) {
|
||||
process.stdout.write(`Transifex Resource not found, creating: ${RESOURCE}\n`);
|
||||
const resourceData = {
|
||||
slug: RESOURCE,
|
||||
|
@ -94,7 +93,6 @@ const pushSource = async function () {
|
|||
content: en
|
||||
};
|
||||
await txCreateResource(PROJECT, resourceData);
|
||||
}
|
||||
process.exitCode = 0;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue