Skip to content

Commit

Permalink
Merge branch 'hotfix/FixVersionNumber'
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomelli committed Jun 11, 2016
2 parents e840a1e + 14b4398 commit 914b7be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Buildron

[![License](http://img.shields.io/:license-MIT-blue.svg)](https://raw.githubusercontent.com/skahal/buildron/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/skahal/buildron.svg?maxAge=2592000)]()
[![License](http://img.shields.io/:license-MIT-blue.svg)](https://raw.githubusercontent.com/skahal/buildron/master/LICENSE)

![](docs/images/Buildron-header.png)

Expand Down Expand Up @@ -121,7 +122,3 @@ Did you change it? [Submit a pull request](https://github.com/skahal/buildron/pu
## License
Licensed under the The MIT License (MIT).
In others words, you can use this library for developement any kind of software: open source, commercial, proprietary and alien.


## Change Log
- 1.6.0 - First open source version.
15 changes: 9 additions & 6 deletions src/Buildron/Assets/Editor/BuildProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ private static void CopyModsFilesToBuild(BuildTarget target, string pathToBuiltP
{
Debug.Log("BuildProcessor.OnPostprocessBuild");

switch(target)
{
case BuildTarget.StandaloneWindows:
case BuildTarget.StandaloneWindows64:
pathToBuiltProject = Path.GetDirectoryName(pathToBuiltProject);
break;
switch(target)
{
case BuildTarget.StandaloneWindows:
case BuildTarget.StandaloneWindows64:
case BuildTarget.StandaloneLinux:
case BuildTarget.StandaloneLinux64:
case BuildTarget.StandaloneLinuxUniversal:
pathToBuiltProject = Path.GetDirectoryName(pathToBuiltProject);
break;
}

Debug.LogFormat("pathToBuiltProject: {0}", pathToBuiltProject);
Expand Down
2 changes: 1 addition & 1 deletion src/Buildron/Assets/_Assets/Scenes/MainScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -2257,7 +2257,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: f840055c02f3e4e4d8de5e02ef802863, type: 3}
m_Name:
m_EditorClassIdentifier:
m_version: 1.6.0
m_version: 1.11.3
m_isBetaVersion: 0
m_multiplayerVersion:
--- !u!1 &639640094
Expand Down

0 comments on commit 914b7be

Please sign in to comment.