Skip to content
This repository has been archived by the owner on Aug 14, 2022. It is now read-only.

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
vgorloff committed Dec 23, 2018
1 parent 9172c02 commit 5ab2ef3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ namespace :develop do
end

desc "Install Hello project on Android"
task :hello do
task :project do
binary = HelloProjectBuilder.new(Arch.armv7a).executable
helper = ADBHelper.new()
helper.deployLibs
Expand Down Expand Up @@ -236,14 +236,14 @@ namespace :develop do
end

desc "Clean Hello project."
task :hello do
task :project do
ADBHelper.new().cleanup(HelloProjectBuilder.new(Arch.armv7a).executableName)
end
end

namespace :run do
desc "Run Hello project on Android"
task :helo do
task :project do
ADBHelper.new().run(HelloProjectBuilder.new(Arch.armv7a).executableName)
end
end
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Builders/SwiftBuilder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def build
cmd << "--install-destdir=#{@installs}"
cmd << "--build-dir #{@builds}"
execute cmd.join(" ")
logBuildCompleted()
removeLinkerSymLink()
logBuildCompleted()
end

def prepare
Expand Down

0 comments on commit 5ab2ef3

Please sign in to comment.