File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,6 @@ task :build => MRuby.targets.flat_map{|_, build| build.products}
5858desc "clean all built and in-repo installed artifacts"
5959task :clean do
6060 MRuby . each_target do |build |
61- if Dir . exist? build . gems [ 'mruby-pico-compiler' ] &.dir . to_s
62- Dir . chdir build . gems [ 'mruby-pico-compiler' ] . dir do
63- sh "rake clean"
64- end
65- end
6661 rm_rf build . build_dir
6762 rm_f build . products
6863 end
@@ -116,13 +111,13 @@ end
116111
117112desc "create production build"
118113task :production do
119- clean_if ( :debug )
114+ # clean_if(:debug)
120115 Rake ::Task [ :all ] . invoke
121116end
122117
123118desc "create debug build"
124119task :debug do
125- clean_if ( :production )
120+ # clean_if(:production)
126121 ENV [ 'PICORUBY_DEBUG' ] = "yes"
127122 Rake ::Task [ :all ] . invoke
128123end
You can’t perform that action at this time.
0 commit comments