Skip to content
Snippets Groups Projects
Commit 5f8e34fc authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: remove support for incremental upgrade scripts

As we don't have any older gluon versions so far, and hope to be able to do all
upgrades with invariant scripts, remove the code for now.

If we ever see the need to add such upgrade scripts, we can just re-add this.
parent b775741d
No related branches found
No related tags found
No related merge requests found
......@@ -45,17 +45,6 @@ do_component() {
else
do_dir initial
fi
else
local v
for v in *; do
[ "$v" != initial -a "$v" != invariant -a "$v" != legacy ] || continue
# The return value of opkg compare-versions is negated
if ! opkg compare-versions "$v" '>>' "$oldversion"; then
do_dir "$v"
fi
done
fi
do_dir invariant
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment