Skip to content

Commit

Permalink
fix(deployment_tasks): symbols.yaml is no longer a build target
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Feb 17, 2018
1 parent caf8ebb commit f920e4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/rime/lever/deployment_tasks.cc
Expand Up @@ -162,8 +162,9 @@ bool WorkspaceUpdate::Run(Deployer* deployer) {
the<DeploymentTask> t;
t.reset(new ConfigFileUpdate("default.yaml", "config_version"));
t->Run(deployer);
t.reset(new ConfigFileUpdate("symbols.yaml", "config_version"));
t->Run(deployer);
// Deprecated: symbols.yaml is only used as source file
//t.reset(new ConfigFileUpdate("symbols.yaml", "config_version"));
//t->Run(deployer);
t.reset(new SymlinkingPrebuiltDictionaries);
t->Run(deployer);
}
Expand Down

0 comments on commit f920e4f

Please sign in to comment.