Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9f90700b564f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f3cf1148788d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 4, 2017

  1. dropbox: fix version sort order

    This makes the startup wrapper work as intended instead of
    re-downgrading Dropbox after each time it updates itself.
    benley committed Dec 4, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    benley Benjamin Staffin
    Copy the full SHA
    7a9784c View commit details

Commits on Dec 5, 2017

  1. Merge pull request #32328 from benley/dropbox-wrapper

    dropbox: fix version sort order
    Thomas Tuegel authored Dec 5, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f3cf114 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/applications/networking/dropbox/default.nix
2 changes: 1 addition & 1 deletion pkgs/applications/networking/dropbox/default.nix
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ buildFHSUserEnv {
do_install=1
else
installed_version=$(cat "$HOME/.dropbox-dist/VERSION")
latest_version=$(printf "${version}\n$installed_version\n" | sort -V | head -n 1)
latest_version=$(printf "${version}\n$installed_version\n" | sort -rV | head -n 1)
if [ "x$installed_version" != "x$latest_version" ]; then
do_install=1
fi