Skip to content

Commit 45a0c5a

Browse files
fix(show_changelog): silence popd() output
1 parent cf32272 commit 45a0c5a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

show_changelog.js

+2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ function showDepChangelog(dependency) {
104104
let depChangelog = _exec(`node ${scriptPath} --from ${from} --to ${to}`, true).stdout.trim();
105105
console.log(depChangelog.split(/[\r\n]/).slice(1).join('\n'));
106106
} finally {
107+
shelljs.config.silent = true;
107108
shelljs.popd();
109+
shelljs.config.silent = false;
108110
}
109111
}
110112

0 commit comments

Comments
 (0)