Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make command fails #113

Open
fazpu opened this issue Dec 27, 2022 · 1 comment
Open

make command fails #113

fazpu opened this issue Dec 27, 2022 · 1 comment
Assignees
Labels
area/packaging Related to packaging type/bug Doesn't work as expected

Comments

@fazpu
Copy link
Contributor

fazpu commented Dec 27, 2022

Describe the bug
make command fails with:

mkdir -p build dist && \
                cp -R ../../web/build/ . && \
                cd build && \
                rm -f index.html image.png sample.jpg && \
                cp ../web/build/nitride.js . && \
                cp ../examples/* . && \
                mv static/css/main.*.css static/css/main.css && \
                mv static/js/main.*.js static/js/main.js && \
                zip -r ../dist/nitride_0.19.0.zip *
mv: rename static/css/main.*.css to static/css/main.css: No such file or directory
make[1]: *** [build] Error 1
make: *** [py] Error 2

Environment (please complete the following information):

  • Nitro version: 0.19.0

Additional context
Add any other context about the problem here.

@fazpu fazpu added the type/bug Doesn't work as expected label Dec 27, 2022
@lo5
Copy link
Member

lo5 commented Jan 4, 2023

@fazpu Thanks for reporting this.

The linked PR was probably meant for #112?

For this issue (113), it looks like the macOS shell is unable to interpret the wildcard static/css/main.*.css in the command mv static/css/main.*.css static/css/main.css. That command is trying to rename, say, build/static/css/main.1a2b3c.css to build/static/css/main.css prior to packaging.

I don't have a mac handy. Can you please confirm?

@lo5 lo5 added the area/packaging Related to packaging label Jan 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/packaging Related to packaging type/bug Doesn't work as expected
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants