Skip to content

Commit

Permalink
Remove male sign after emoji (AlchemyCMS#1849)
Browse files Browse the repository at this point in the history
The wizard can be gender neutral.
  • Loading branch information
mamhoff authored May 26, 2020
1 parent 5397826 commit 14625b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/tasks/alchemy/webpacker.rake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace :alchemy do
desc "Install Alchemy JavaScript dependencies as specified via Yarn"
task :install do
Dir.chdir(File.join(__dir__, "../..")) do
puts "πŸ§™β€β™‚οΈ Install AlchemyCMS JS bundle"
puts "πŸ§™ Install AlchemyCMS JS bundle"
system "yarn install --no-progress --production"
end
end
Expand All @@ -17,7 +17,7 @@ namespace :alchemy do
require "fileutils"
Webpacker.with_node_env("production") do
start = Time.now
puts "πŸ§™β€β™‚οΈ Compile AlchemyCMS JS packs"
puts "πŸ§™ Compile AlchemyCMS JS packs"
if Alchemy.webpacker.commands.compile
FileUtils.cp_r(
Alchemy::Engine.root.join("public", "alchemy-packs"),
Expand All @@ -27,7 +27,7 @@ namespace :alchemy do
# Failed compilation
exit!
end
puts "πŸ§™β€β™‚οΈ Done in #{(Time.now - start).round(2)}s."
puts "πŸ§™ Done in #{(Time.now - start).round(2)}s."
end
end
end
Expand Down

0 comments on commit 14625b7

Please sign in to comment.