Skip to content

Commit

Permalink
fixed bug in batchmode of stk_inspect and updated bundle.sh (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
auerj authored and jredmondson committed Oct 8, 2018
1 parent 219132d commit 50fdc63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/linux/bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ else

IFS=" "

echo "mabundle -d ${DEST_DIR} -s ${SOURCE_DIR} ${BUNDLE_ARGS[@]}"
mabundle -d ${DEST_DIR} -s ${SOURCE_DIR} "${BUNDLE_ARGS[@]}"
echo "\$MADARA_ROOT/bin/mabundle -d ${DEST_DIR} -s ${SOURCE_DIR} ${BUNDLE_ARGS[@]}"
$MADARA_ROOT/bin/mabundle -d ${DEST_DIR} -s ${SOURCE_DIR} "${BUNDLE_ARGS[@]}"

if [ $TAR -eq 1 ]; then

Expand Down
2 changes: 1 addition & 1 deletion tools/stk_inspect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ void handle_arguments(int argc, const char** argv, size_t recursion_limit = 10)

++i;
}
if(arg1 == "-cf" || arg1 == "--config-file")
else if(arg1 == "-cf" || arg1 == "--config-file")
{
madara_logger_ptr_log(logger::global_logger.get(), logger::LOG_TRACE,
"Found user config file flag, param: %s\n", argv[i + 1]);
Expand Down

0 comments on commit 50fdc63

Please sign in to comment.