summaryrefslogtreecommitdiffstats
path: root/ship
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-12-09 22:06:12 +0100
committermakefu <github@syntax-fehler.de>2013-12-09 22:06:12 +0100
commit93649c0d464de3b62dfd7fbc717386e6905bbbd2 (patch)
tree674ee2cef22a12285b7c09dfa1a8eb3d83a2ced3 /ship
parent6755676db22c82806763f19e7654c2f7c03279c2 (diff)
fix http_head
Diffstat (limited to 'ship')
-rw-r--r--ship/lib/network4
1 files changed, 2 insertions, 2 deletions
diff --git a/ship/lib/network b/ship/lib/network
index e1a9a31e..29eefdbe 100644
--- a/ship/lib/network
+++ b/ship/lib/network
@@ -30,10 +30,10 @@ which_head_loader(){
}
http_get(){
- "$(which_get_loader)" "${1?please provide url}"
+ eval "$(which_get_loader)" "${1?please provide url}"
}
http_head(){
- "$(which_head_loader)" "${1?please provide url}"
+ eval "$(which_head_loader)" "${1?please provide url}"
}
which_telnet(){