mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 08:21:11 +00:00
6 lines
No EOL
164 B
Bash
Executable file
6 lines
No EOL
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ext="sedbak$$"
|
|
|
|
find . -name project.clj -exec sed -i.$ext "s/(def VERSION \".*\")/(def VERSION \"$1\")/g" '{}' \;
|
|
find . -name "*.$ext" -exec rm '{}' \; |