mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-25 07:45:41 +03:00
12 lines
117 B
Bash
12 lines
117 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Run pnpm format
|
||
|
pnpm format
|
||
|
|
||
|
# Change directory to src-tauri
|
||
|
cd src-tauri
|
||
|
|
||
|
# Run cargo fmt
|
||
|
cargo fmt
|
||
|
|