Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
1
Star
3
Fork
12
zhasm
/
curlicue
forked from
decklin/curlicue
Code
Pull requests
0
Projects
0
Insights
Permalink
Browse files
Bail if nothing loaded
Loading branch information
...
decklin
committed
Jun 24, 2010
1 parent
60475b6
commit
b954bdbe786e992ab106fe8be3d70011f2e3372d
Unified
Split
Showing
1 changed file
with
5 additions
and
0 deletions
.
+5
−0
curlicue
Show comments
View
5
curlicue
@@ -78,6 +78,11 @@ while getopts 'r:p:e:' OPTION; do
done
shift
$((
$OPTIND
-
1
))
+
if
[
-z
"
$oauth_consumer_key
"
-o
-z
"
$oauth_consumer_secret
"
]
;
then
+
echo
"
Couldn't load a consumer key and secret! Exiting.
"
+
exit
1
+
fi
+
for
i
;
do
case
"
$prev
"
in
-d|--data) url_params=
"
$i
"
;;
Toggle all file notes
0 comments on commit
b954bdb
Please
sign in
to comment.
You can’t perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
Press h to open a hovercard with more details.
0 comments on commit
b954bdb