Skip to content

Commit

Permalink
chore: add a delay to the help message
Browse files Browse the repository at this point in the history
  • Loading branch information
shakkernerd committed Dec 7, 2024
1 parent e094cce commit 1656ce7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cat << "EOF"
* *
* 4. Update the 'agent/package.json' file: *
* *
* Add your plugin to the "dependencies" section like so: *
* Add your plugin to the "dependencies" section like so: *
* *
* "@ai16z/your-plugin-name": "workspace:*" *
* *
Expand All @@ -61,6 +61,12 @@ cat << "EOF"
EOF

# 2 seconds delay
for i in {1..5}; do
echo -n "."
sleep 0.4
done

# Check if the packages directory exists
if [ ! -d "$PACKAGES_DIR" ]; then
echo "Error: Directory $PACKAGES_DIR does not exist."
Expand Down

0 comments on commit 1656ce7

Please sign in to comment.