before trying git patches

This commit is contained in:
Djkáťo 2024-05-09 18:33:09 +02:00
parent f9f26edb83
commit 18d5038528
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ for i in ${redis_apl_target_paths[*]}; do
echo "copying redis_apl.ts to ./all_apps/$i"
cp -f "$REDIS_APL_PATH" "./all_apps/$i"
# always copies next to saleor-app.ts, so let's add some files to that file too
find . -name "saleor-app.ts" -exec sed "/switch/ r $CURR_PWD/changes/case_redisapl.ts" {} \;
# find . -name "saleor-app.ts" -exec sed "/switch/ r $CURR_PWD/changes/case_redisapl.ts" {} \;
done
for i in ${app_paths[*]}; do

View file

@ -35,7 +35,7 @@ fn main() -> Result<(), io::Error> {
+ &first_half;
let final_content = first_half + &second_half;
// fs::write(file, final_content)?;
fs::write("output.ts", &final_content)?;
println!("{}", final_content);
Ok(())