Compare commits

..

No commits in common. "ddf5117fd99864f9b2c0a76d84d3220105bad541" and "35a8d0eaa4f59478027201aacbf987fca7e4b7fb" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ commander.register('cd', function (args, sinks)
dirs.setOld(hilbish.cwd()) dirs.setOld(hilbish.cwd())
dirs.push(path) dirs.push(path)
local ok, err = pcall(function() fs.cd(fs.abs(path)) end) local ok, err = pcall(function() fs.cd(path) end)
if not ok then if not ok then
sinks.out:writeln(err) sinks.out:writeln(err)
return 1 return 1

View File

@ -27,7 +27,7 @@ hilbish.tips = {
} }
bait.catch('hilbish.init', function() bait.catch('hilbish.init', function()
if hilbish.interactive and hilbish.opts.tips then if hilbish.interactive and hilbish.opts.tip then
local idx = math.random(1, #hilbish.tips) local idx = math.random(1, #hilbish.tips)
print(lunacolors.format(PREAMBLE .. "\nTip: " .. hilbish.tips[idx])) print(lunacolors.format(PREAMBLE .. "\nTip: " .. hilbish.tips[idx]))
end end

View File

@ -11,7 +11,7 @@ var (
// Version info // Version info
var ( var (
ver = "v2.3.1" ver = "v2.3.0"
releaseName = "Alyssum" releaseName = "Alyssum"
gitCommit string gitCommit string