luxeengine / alpha

alpha - deprecated 2015~2016. unrelated to the new engine! view the new engine here - https://luxeengine.com/
MIT License
565 stars 74 forks source link

Please don't restrict flow paths #316

Closed raould closed 9 years ago

raould commented 9 years ago

I find this to be a frustrating restriction.

flow / build - empty 1.0.0 for web
flow / >     - files - dest file with unsafe path. index.html not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/bin/web/index.html)
flow / >     - files - dest file with unsafe path. lib/howler.js not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/bin/web/lib/howler.js)
flow / >     - files - dest file with unsafe path. haxe/SnowApp.hx not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/bin/web/haxe/SnowApp.hx)
flow / >     - files - dest file with unsafe path. haxe/LuxeApp.hx not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/bin/web/haxe/LuxeApp.hx)
flow / >     - files - source file with unsafe path. ../assets/ not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/assets/)
flow / >     - files - dest file with unsafe path. ../assets/ not inside /home/x/Dev/x/luxe/ (becomes /home/x/Dev/x/bin/assets)
ruby0x1 commented 9 years ago

Try adding files_allow_unsafe_paths to the build node in your project file.

raould commented 9 years ago

cool, thanks!