35 lines
856 B
Diff
35 lines
856 B
Diff
From 32a0abbee3f5d4b0f167783c7e1b1cc9fce205e2 Mon Sep 17 00:00:00 2001
|
|
From: Dalibor Pospisil <dapospis@redhat.com>
|
|
Date: Wed, 18 Jun 2014 15:58:58 +0200
|
|
Subject: [PATCH 02/14] fixed issue with wrong number parameters passed to
|
|
bstor
|
|
|
|
---
|
|
src/storage.sh | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/storage.sh b/src/storage.sh
|
|
index 820a8bb..156424b 100644
|
|
--- a/src/storage.sh
|
|
+++ b/src/storage.sh
|
|
@@ -42,13 +42,13 @@ There are currently no public functions in this module
|
|
__INTERNAL_STORAGE_BIN=beakerlib-storage
|
|
|
|
__INTERNAL_ST_GET() {
|
|
- $__INTERNAL_STORAGE_BIN get $@
|
|
+ $__INTERNAL_STORAGE_BIN get "$@"
|
|
}
|
|
|
|
__INTERNAL_ST_PUT() {
|
|
- $__INTERNAL_STORAGE_BIN put $@
|
|
+ $__INTERNAL_STORAGE_BIN put "$@"
|
|
}
|
|
|
|
__INTERNAL_ST_PRUNE() {
|
|
- $__INTERNAL_STORAGE_BIN prune $@
|
|
+ $__INTERNAL_STORAGE_BIN prune "$@"
|
|
}
|
|
--
|
|
1.9.3
|
|
|