Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
Fix the path when install composer
  • Loading branch information
tanhongit authored Nov 3, 2023
1 parent cbd7bfa commit c4b4187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ json_files=(

for file in "${json_files[@]}"; do
if [ ! -f "storage/json/tgn/$file" ]; then
cp "./config/jsons/$file" "storage/json/tgn/$file"
cp "$(dirname "$0")/config/jsons/$file" "storage/json/tgn/$file"
echo "Created storage/json/tgn/$file"
fi
done
Expand Down

0 comments on commit c4b4187

Please sign in to comment.