8 lines
83 B
Bash
Executable file
8 lines
83 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
pushd gdn-app
|
|
pnpm build
|
|
popd
|
|
|
|
cargo clippy
|