corrad-bp/post-build.js
2025-04-09 11:16:18 +08:00

8 lines
197 B
JavaScript

const { execSync } = require("child_process");
// Revert changes using git
execSync("git checkout -- pages/devtool navigation/index.js", {
stdio: "inherit",
});
console.log("Changes reverted");