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