Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
835ceab8
Commit
835ceab8
authored
Dec 09, 2018
by
Evan W. Patton
Committed by
Susan Rati Lane
Dec 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PlayApp build on Windows due to wrong slash
Change-Id: Idbd09280429ee9a786a4c476224fcae0e69f7e6c
parent
6f144887
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
appinventor/buildserver/src/com/google/appinventor/buildserver/Compiler.java
...rver/src/com/google/appinventor/buildserver/Compiler.java
+2
-1
No files found.
appinventor/buildserver/src/com/google/appinventor/buildserver/Compiler.java
View file @
835ceab8
...
...
@@ -78,6 +78,7 @@ public final class Compiler {
private
static
final
String
SLASH
=
File
.
separator
;
private
static
final
String
COLON
=
File
.
pathSeparator
;
private
static
final
String
ZIPSLASH
=
"/"
;
public
static
final
String
RUNTIME_FILES_DIR
=
"/"
+
"files"
+
"/"
;
...
...
@@ -1719,7 +1720,7 @@ public final class Compiler {
}
String
sourcePath
=
""
;
String
pathSuffix
=
RUNTIME_FILES_DIR
+
sourceDirName
+
SLASH
+
lib
;
String
pathSuffix
=
RUNTIME_FILES_DIR
+
sourceDirName
+
ZIP
SLASH
+
lib
;
if
(
simpleCompTypes
.
contains
(
type
))
{
sourcePath
=
getResource
(
pathSuffix
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment