mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
5 lines
185 B
Plaintext
5 lines
185 B
Plaintext
|
#!/usr/bin/env node
|
||
|
// Writes the absolute path to the release build root to stdout
|
||
|
var path = require('path');
|
||
|
process.stdout.write(path.resolve(__dirname, '../../dest/prod') + '\n');
|