From 282753aa6ecf3dd2c99320ead623f48fa49634b2 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 9 Aug 2015 19:53:28 +0200 Subject: [PATCH] Fix reference to APP DIR. --- lib/qasim/constants.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/qasim/constants.rb b/lib/qasim/constants.rb index 089ef09..a4e02a5 100644 --- a/lib/qasim/constants.rb +++ b/lib/qasim/constants.rb @@ -1,7 +1,7 @@ module Qasim APP_DATA_DIR = Pathname.new(File.dirname(__FILE__)).parent.parent.parent + "data" - APP_ICON_PATH = File.join QASIM_DATA_DIR, "icons" + APP_ICON_PATH = File.join APP_DATA_DIR, "icons" APP_SYSCONFIG_DIR = "/etc/qasim/maps.d"