summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2021-09-30 09:30:59 +0200
committerGitHub <noreply@github.com>2021-09-30 09:30:59 +0200
commitf74af9c7bf289181b857938150054c87b0c26a0e (patch)
tree1e844a7d5ca9ffcdc94edb63fe8bfaf60d3f6cb9 /Makefile.toml
parent7ab0e39931dbe764a3122e3a33cf5e34f2071b56 (diff)
fix(makefile): update `update-default-config` (#751)
- switch the `update-default-config` task to be prior to commiting changes
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index bede9e4bd..8cb5f4d37 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -161,7 +161,7 @@ args = ["install", "cross"]
[tasks.publish]
clear = true
workspace = false
-dependencies = ["build-plugins-release", "wasm-opt-plugins", "release-commit"]
+dependencies = [ "update-default-config", "build-plugins-release", "wasm-opt-plugins", "release-commit"]
run_task = "publish-zellij"
[tasks.release-commit]
@@ -207,6 +207,6 @@ cwd = "zellij-tile-utils"
script = "cargo publish && sleep 15"
[tasks.publish-zellij]
-dependencies = ["publish-zellij-client", "publish-zellij-server", "publish-zellij-utils", "update-default-config"]
+dependencies = ["publish-zellij-client", "publish-zellij-server", "publish-zellij-utils",]
command = "cargo"
args = ["publish"]