EZPPLauncher/test/patch.test.ts

8 lines
184 B
TypeScript

const bs = require("bsdiff-bin")
(async () => {
bs.patch('./osu!.exe', './osu!patched.exe', './osu!patch.diff', function(err){
if(err) console.log("failed")
});
})();