Skip to content

Commit e025d2c

Browse files
committed
Change grunt build on temp branch
1 parent 182307c commit e025d2c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ namespace :build do
6666

6767
HipChat.log 'Building <b>blockly</b>...'
6868
if CDO.localize_blockly
69-
RakeUtils.system 'MOOC_LOCALIZE=1', 'grunt'
69+
RakeUtils.system 'MOOC_LOCALIZE=1', 'grunt build'
7070
else
71-
RakeUtils.system 'grunt'
71+
RakeUtils.system 'grunt build'
7272
end
7373
end
7474
end

blockly/src/turtle/turtle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ Turtle.drawToTurtle_ = function (distance) {
10781078
}
10791079

10801080
Turtle.shapewaysPrintablePathPoints = Turtle.shapewaysPrintablePathPoints || [];
1081-
Turtle.shapewaysPrintablePathPoints.push([Turtle.x, Turtle.y]);
1081+
Turtle.shapewaysPrintablePathPoints.push([Turtle.x * retina, Turtle.y * retina]);
10821082
}
10831083
};
10841084

0 commit comments

Comments
 (0)