From 4e3a2cbfede9f92e5d611a1a11a9e47f48dc830e Mon Sep 17 00:00:00 2001 From: Yuki Shimada Date: Mon, 24 May 2021 15:26:42 +0900 Subject: [PATCH] Fix the check command (remove the './') for more common environment --- bin/check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/check b/bin/check index 916a217..94a5c13 100755 --- a/bin/check +++ b/bin/check @@ -70,7 +70,7 @@ echo "OK" # サンプル・ファイルの暗号化 # -------------------------- echo -n "サンプル・ファイルを暗号化しています ... " -RESULT=`./enc ${USERNAME} ${PATHFILE} 2>$1` +RESULT=`enc ${USERNAME} ${PATHFILE} 2>$1` if [[ $? != 0 ]]; then echo "NG:サンプル・ファイルの暗号化に失敗しました。" @@ -83,7 +83,7 @@ echo "OK" # サンプル・ファイルの復号 # ------------------------ echo -n "暗号ファイルを復号しています ... " -RESULT=`./dec ${SECRETKEY} ${PATHFILE}.enc ${PATHFILE}.dec 2>$1` +RESULT=`dec ${SECRETKEY} ${PATHFILE}.enc ${PATHFILE}.dec 2>$1` if [[ $? != 0 ]]; then echo "NG:暗号ファイルの復号中にエラーが発生しました。"