Use three dots for ellipsis

This commit is contained in:
Tobias Happ 2019-11-27 09:48:05 +01:00 committed by Alexander Sosedkin
parent 33a13a24ae
commit cfe16dff4e

View file

@ -36,14 +36,14 @@ function doHelp() {
function doSwitch() {
local profileDirectory="/nix/var/nix/profiles/nix-on-droid"
echo "Building activation package.."
echo "Building activation package..."
nix build \
--no-link \
--file "<nix-on-droid/modules>" \
${PASSTHROUGH_OPTS[*]} \
activationPackage
echo "Save profile activation package.."
echo "Save profile activation package..."
generationDir="$(nix path-info \
--file "<nix-on-droid/modules>" \
${PASSTHROUGH_OPTS[*]} \
@ -51,7 +51,7 @@ function doSwitch() {
)"
nix-env --profile "${profileDirectory}" --set "${generationDir}"
echo "Run activation script.."
echo "Run activation script..."
"${generationDir}/activate"
}