mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-22 00:00:04 +08:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
#!/usr/bin/env node
|
|
const path = require("path")
|
|
const fs = require("fs")
|
|
|
|
fs.symlinkSync(
|
|
path.resolve(__dirname, "../package.nw"),
|
|
path.resolve(__dirname, "../nwjs/package.nw")
|
|
|
|
) |