dnssim 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin.sh +10 -0
  2. package/package.json +1 -1
package/bin.sh CHANGED
@@ -1,4 +1,14 @@
1
1
  #!/bin/sh
2
+
3
+ #!/usr/bin/env bash
4
+
5
+ echo "pwd: `pwd`"
6
+ echo "\$0: $0"
7
+ echo "basename: `basename -- "$0"`"
8
+ echo "dirname: `dirname -- "$0"`"
9
+ echo "dirname/readlink: $( dirname -- "$( readlink -f -- "$0"; )"; )"
10
+
11
+ cd $( dirname -- "$( readlink -f -- "$0"; )"; )
2
12
  if [[ "$1" == "deploy" ]]
3
13
  then
4
14
  npm run deploy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dnssim",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "protestware ware to send randomly genereated dns requests so that maybe att will let me change dns servers on my router",
5
5
  "main": "main.js",
6
6
  "scripts": {