Skip to content

Commit

Permalink
#15 Prepare repo for deployment: move Pomodoro.txt under src ready fo…
Browse files Browse the repository at this point in the history
…r deployment.
  • Loading branch information
rdok committed May 1, 2019
1 parent aeefde6 commit 91cb079
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This `scripts` folder has scripts automating tasks such as getting busted, esoui
### Link src to ESO path
Storing source code inside the system feels like coding on production server :mind_blown: Let's fix that by creating a symbolic link from the source code to system:
- Open `cmd` with Admin privileges
- Paste: `mklink /d "C:\Users\rdok\Documents\Elder Scrolls Online\live\AddOns\Pomodoro" "D:\Code\Pomodoro"`
- Paste: `mklink /d "C:\Users\rdok\Documents\Elder Scrolls Online\live\AddOns\Pomodoro" "D:\Code\Pomodoro\src"`

### Issues
#### File Endings
Expand Down
14 changes: 7 additions & 7 deletions Pomodoro.txt → src/Pomodoro.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
## APIVersion: 100026
## Author: Rizart Dokollari

src/helpers.lua
src/TextFormatter.lua
src/Listener.lua
src/HelpPage.lua
src/Command.lua
src/Pomodoro.lua
src/RegisterAddon.lua
helpers.lua
TextFormatter.lua
Listener.lua
HelpPage.lua
Command.lua
Pomodoro.lua
RegisterAddon.lua

# This Add-on is not created by, affiliated with, or sponsored by, ZeniMax Media Inc. or its affiliates.
# The Elder Scrolls® and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the United States
Expand Down
2 changes: 1 addition & 1 deletion tests/_support/EsoLuaLoader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function EsoLuaLoader:requireLuaFiles()
-- eso loads/requires the lua files internally. Let's replicate this behaviour
-- to avoid any mismatched require between the tests and src

local file = assert(io.open("Pomodoro.txt", "rb"))
local file = assert(io.open("src/Pomodoro.txt", "rb"))
for line in file:lines() do
local isLua = string.match(line, "^%a")

Expand Down

0 comments on commit 91cb079

Please sign in to comment.