aboutsummaryrefslogtreecommitdiff
path: root/lpm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lpm.c')
-rw-r--r--lpm.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/lpm.c b/lpm.c
index 4d9db68..6c6d55b 100644
--- a/lpm.c
+++ b/lpm.c
@@ -60,9 +60,13 @@ static int lpm_hash(lua_State* L) {
}
int lpm_symlink(lua_State* L) {
- if (symlink(luaL_checkstring(L, 1), luaL_checkstring(L, 2)))
- return luaL_error(L, "can't create symlink %s: %s", luaL_checkstring(L, 2), strerror(errno));
- return 0;
+ #ifndef _WIN32
+ if (symlink(luaL_checkstring(L, 1), luaL_checkstring(L, 2)))
+ return luaL_error(L, "can't create symlink %s: %s", luaL_checkstring(L, 2), strerror(errno));
+ return 0;
+ #else
+ return luaL_error(L, "can't create symbolic link %s: your operating system sucks", luaL_checkstring(L, 2));
+ #endif
}
int lpm_chmod(lua_State* L) {