You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
execute 'build'
which compiles my go files and stores them in 'bin'
iterate now over all files in 'bin' and zip each of them
sadly this is not what happens, instead what seems to happen is
evaluate all variable definitions (SOURCES and OBJECTS)
sources are populated correctly, since there are file. Objects does not get populate right, since no files exist yet so it's empy
this now causes the zip task to fail, since the array OBJECTS is empty.
how can I force 'tasks' to not populate 'OBJCETCS' until the task is actually execute.
Or if this is not possible, how can I instead compile 50 go files, to 50 zip files, each containing 1 go file, fir the zip file name go-file.zip. Where go-file is the name of the file.
thanks!
The text was updated successfully, but these errors were encountered:
I'm having a very simple issue. I'm trying to build a couple of go lambda functions like
I would assume this task file would
which compiles my go files and stores them in 'bin'
sadly this is not what happens, instead what seems to happen is
how can I force 'tasks' to not populate 'OBJCETCS' until the task is actually execute.
Or if this is not possible, how can I instead compile 50 go files, to 50 zip files, each containing 1 go file, fir the zip file name go-file.zip. Where go-file is the name of the file.
thanks!
The text was updated successfully, but these errors were encountered: