Skip to content

Commit

Permalink
Fix rsync command (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueraft authored Sep 12, 2024
1 parent f5c6c2f commit 6cc0f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.plugin_name}}/move_template_files.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

if ! command -v rsync &> /dev/null; then
if ! command -v rsync >/dev/null 2>&1; then
echo "rsync required, but not installed!"
exit 1
else
Expand Down

0 comments on commit 6cc0f9d

Please sign in to comment.