git ssb

0+

cel-desktop / ssb-pkg



Tree: 4c58f1c6c3ddb86a97f27f0c84681d201ef1f75f

Files: 4c58f1c6c3ddb86a97f27f0c84681d201ef1f75f / test / test-46-input-output-targets-many-2 / main.js

545 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5const assert = require('assert');
6const utils = require('../utils.js');
7
8assert(!module.parent);
9assert(__dirname === process.cwd());
10
11const target = process.argv[2] || 'latest';
12const input = './test-x-index';
13
14const newcomers = [
15 'test-output-linux',
16 'test-output-macos',
17 'test-output-win.exe'
18];
19
20const before = utils.filesBefore(newcomers);
21
22utils.pkg.sync([
23 '--target', `${target}-linux,${target}-macos,${target}-win`,
24 '--output', 'test-output', input
25]);
26
27utils.filesAfter(before, newcomers);
28

Built with git-ssb-web