Skip to content

Instantly share code, notes, and snippets.

@viktorfa
Last active March 14, 2021 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viktorfa/4d0d3e1d9f6f317d7037bcead27f28c0 to your computer and use it in GitHub Desktop.
Save viktorfa/4d0d3e1d9f6f317d7037bcead27f28c0 to your computer and use it in GitHub Desktop.
Post build script for Strapi Serverless
# scripts/post-build.sh
#!/bin/bash
echo "post-build.sh – moving assets of frontend build to dev/ folder."
mkdir $PWD/build/dev
find $PWD/build/ -type f -print0 | xargs -0 mv -t $PWD/build/dev
mv $PWD/build/dev/index.html $PWD/build
@nkmnz
Copy link

nkmnz commented Mar 14, 2021

shouldn't it be
mv $PWD/build/index.html $PWD/build/dev
in line 9?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment