@@ -156,7 +156,7 @@ else:
156156
157157
158158env ["DIST_ROOT" ] = Dir (f"build/dist" )
159- env ["DIST_PLATFORM" ] = Dir (f"{ env ['DIST_ROOT' ]} /pythonscript/{ env ['platform' ]} " )
159+ env ["DIST_PLATFORM" ] = Dir (f"{ env ['DIST_ROOT' ]} /addons/ pythonscript/{ env ['platform' ]} " )
160160VariantDir (f"build/{ env ['platform' ]} /platforms" , f"platforms" )
161161VariantDir (f"build/{ env ['platform' ]} /pythonscript" , "pythonscript" )
162162
@@ -170,16 +170,16 @@ env.Command(
170170 action = Copy ("$TARGET" , "$SOURCE" ),
171171)
172172env .Command (
173- target = f"$DIST_ROOT/pythonscript/LICENSE.txt" ,
173+ target = f"$DIST_ROOT/addons/ pythonscript/LICENSE.txt" ,
174174 source = f"#/misc/release_LICENSE.txt" ,
175175 action = Copy ("$TARGET" , "$SOURCE" ),
176176)
177+ env .Command (target = "$DIST_ROOT/addons/pythonscript/.gdignore" , source = None , action = Touch ("$TARGET" ))
177178env .Command (
178- target = f"$DIST_ROOT/pythonscript_repl" ,
179+ target = f"$DIST_ROOT/addons/ pythonscript_repl" ,
179180 source = f"#/addons/repl" ,
180181 action = Copy ("$TARGET" , "$SOURCE" ),
181182)
182- env .Command (target = "$DIST_ROOT/pythonscript/.gdignore" , source = None , action = Touch ("$TARGET" ))
183183
184184
185185### Load sub scons scripts ###
0 commit comments