This website works better with JavaScript.
Home
Explore
Help
Sign In
brettlangdon
/
node-dogapi
mirror of
https://github.com/brettlangdon/node-dogapi.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
40
Wiki
Activity
Browse Source
show error on unknown command
pull/14/head
Brett Langdon
11 years ago
parent
81923ef3da
commit
c3f044c6ad
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
lib/api/tag.js
+ 2
- 0
lib/api/tag.js
View File
@ -257,6 +257,8 @@ module.exports = {
update
(
host
,
tags
,
source
,
callback
)
;
}
else
if
(
subcommand
===
"delete"
)
{
remove
(
host
,
source
,
callback
)
;
}
else
{
callback
(
"unknown subcommand or arguments try `dogapi tag --help` for help"
,
false
)
;
}
}
}
Write
Preview
Loading…
Cancel
Save