Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechsTech committed Feb 5, 2018
1 parent 559ede5 commit 82f218b
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y p7zip-full
language: node_js
node_js:
- '6'
Expand Down
2 changes: 1 addition & 1 deletion lib/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = function (archive, files, optionspath, options) {
command += ' a "' + archive + '" ' + files;

// Start the command
u.run(command, newoptions)
u.run(command, options)

// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
Expand Down
2 changes: 1 addition & 1 deletion lib/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = function (archive, files, optionspath, options) {
command += ' d "' + archive + '" ' + files;

// Start the command
u.run(command, newoptions)
u.run(command, options)

// When all is done resolve the Promise.
.then(function (args) {
Expand Down
2 changes: 1 addition & 1 deletion lib/extract.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function (archive, dest, optionspath, options) {
command += ' e "' + archive + '" -o"' + dest + '" ';

// Start the command
u.run(command, newoptions)
u.run(command, options)

// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
Expand Down
2 changes: 1 addition & 1 deletion lib/extractFull.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function(archive, dest, optionspath, options) {

// Start the command
u
.run(command, newoptions)
.run(command, options)
// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
// pass it to an array. Finally returns this array.
Expand Down
2 changes: 1 addition & 1 deletion lib/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(archive, optionspath, options) {
var buffer = ""; //Store imcomplete line of a progress data.
// Start the command
u
.run(command, newoptions)
.run(command, options)
// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
// pass it to an array. Finally returns this array.
Expand Down
2 changes: 1 addition & 1 deletion lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function (archive, optionspath, options) {
command += ' t "' + archive + '"';

// Start the command
u.run(command, newoptions)
u.run(command, options)

// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
Expand Down
2 changes: 1 addition & 1 deletion lib/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function (archive, files, optionspath, options) {
command += ' u "' + archive + '" "' + files + '"';

// Start the command
u.run(command, newoptions)
u.run(command, options)

// When a stdout is emitted, parse each line and search for a pattern. When
// the pattern is found, extract the file (or directory) name from it and
Expand Down

0 comments on commit 82f218b

Please sign in to comment.