Skip to content

Commit 3d2176e

Browse files
committed
Remove "--porcelain"
1 parent c547742 commit 3d2176e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76414,7 +76414,7 @@ async function run() {
7641476414
const jabkitExecutable = '/tmp/jabkit/jabkit/bin/jabkit';
7641576415

7641676416
console.log(`Running JabKit consistency check on ${bibfile}...`);
76417-
execSync(`${jabkitExecutable} --porcelain --check-consistency "${bibfile}"`, { stdio: 'inherit' });
76417+
execSync(`${jabkitExecutable} --check-consistency "${bibfile}"`, { stdio: 'inherit' });
7641876418
} catch (error) {
7641976419
core.setFailed(error.message);
7642076420
}

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function run() {
4545
const jabkitExecutable = '/tmp/jabkit/jabkit/bin/jabkit';
4646

4747
console.log(`Running JabKit consistency check on ${bibfile}...`);
48-
execSync(`${jabkitExecutable} --porcelain --check-consistency "${bibfile}"`, { stdio: 'inherit' });
48+
execSync(`${jabkitExecutable} --check-consistency "${bibfile}"`, { stdio: 'inherit' });
4949
} catch (error) {
5050
core.setFailed(error.message);
5151
}

0 commit comments

Comments
 (0)