mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
4305c5fdbe
Co-authored-by: Mikayla <mikayla@zed.dev>
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
cargo run -p storybook
|
|
else
|
|
cargo run -p storybook -- "components/$1"
|
|
fi
|