before trying git patches
This commit is contained in:
parent
f9f26edb83
commit
18d5038528
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ for i in ${redis_apl_target_paths[*]}; do
|
||||||
echo "copying redis_apl.ts to ./all_apps/$i"
|
echo "copying redis_apl.ts to ./all_apps/$i"
|
||||||
cp -f "$REDIS_APL_PATH" "./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
|
# 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
|
done
|
||||||
|
|
||||||
for i in ${app_paths[*]}; do
|
for i in ${app_paths[*]}; do
|
||||||
|
|
|
@ -35,7 +35,7 @@ fn main() -> Result<(), io::Error> {
|
||||||
+ &first_half;
|
+ &first_half;
|
||||||
|
|
||||||
let final_content = first_half + &second_half;
|
let final_content = first_half + &second_half;
|
||||||
// fs::write(file, final_content)?;
|
fs::write("output.ts", &final_content)?;
|
||||||
println!("{}", final_content);
|
println!("{}", final_content);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in a new issue