Skip to content

Commit f920e4f

Browse files
committed
fix(deployment_tasks): symbols.yaml is no longer a build target
1 parent caf8ebb commit f920e4f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/rime/lever/deployment_tasks.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,9 @@ bool WorkspaceUpdate::Run(Deployer* deployer) {
162162
the<DeploymentTask> t;
163163
t.reset(new ConfigFileUpdate("default.yaml", "config_version"));
164164
t->Run(deployer);
165-
t.reset(new ConfigFileUpdate("symbols.yaml", "config_version"));
166-
t->Run(deployer);
165+
// Deprecated: symbols.yaml is only used as source file
166+
//t.reset(new ConfigFileUpdate("symbols.yaml", "config_version"));
167+
//t->Run(deployer);
167168
t.reset(new SymlinkingPrebuiltDictionaries);
168169
t->Run(deployer);
169170
}

0 commit comments

Comments
 (0)